home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{FE0065C0-1B7B-11CF-9D53-00AA003C9CB6}#1.1#0"; "COMCT232.OCX"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 855
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 3645
- LinkTopic = "Form1"
- ScaleHeight = 855
- ScaleWidth = 3645
- StartUpPosition = 3 'Windows Default
- Begin ComCtl2.UpDown UpDown2
- Height = 495
- Left = 3000
- TabIndex = 1
- Top = 120
- Width = 240
- _ExtentX = 423
- _ExtentY = 873
- _Version = 327681
- Value = 1
- BuddyControl = "Label2"
- BuddyDispid = 196611
- OrigLeft = 3240
- OrigRight = 3480
- OrigBottom = 735
- Max = 31
- Min = 1
- SyncBuddy = -1 'True
- BuddyProperty = 65537
- Enabled = -1 'True
- End
- Begin ComCtl2.UpDown UpDown1
- Height = 495
- Left = 1440
- TabIndex = 0
- Top = 120
- Width = 240
- _ExtentX = 423
- _ExtentY = 873
- _Version = 327681
- Value = 1
- OrigLeft = 1440
- OrigRight = 1680
- OrigBottom = 735
- Max = 12
- Min = 1
- Enabled = -1 'True
- End
- Begin VB.Label Label2
- Caption = "Label2"
- Height = 495
- Left = 1920
- TabIndex = 3
- Top = 120
- Width = 975
- End
- Begin VB.Label Label1
- Caption = "Label1"
- Height = 495
- Left = 120
- TabIndex = 2
- Top = 120
- Width = 1215
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Dim Month(12) As String
- Private Sub Form_Load()
- Month(1) = "January": Month(2) = "February"
- Month(3) = "March": Month(4) = "April"
- Month(5) = "May": Month(6) = "June"
- Month(7) = "July": Month(8) = "August"
- Month(9) = "September": Month(10) = "October"
- Month(11) = "November": Month(12) = "December"
- Label1.Caption = Month(1)
- Label2.Caption = "1"
- End Sub
- Private Sub UpDown1_Change()
- Label1.Caption = Month(UpDown1.Value)
- End Sub
-